Skip to content

fix(deps): update all non-major dependencies - autoclosed#179

Closed
renovate[bot] wants to merge 1 commit intotrunkfrom
renovate/all-minor-patch
Closed

fix(deps): update all non-major dependencies - autoclosed#179
renovate[bot] wants to merge 1 commit intotrunkfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 19.6.0 -> 19.6.1 age adoption passing confidence
@pnpm/types (source) 1000.0.0 -> 1000.1.1 age adoption passing confidence
@rollup/pluginutils (source) ^5.1.3 -> ^5.1.4 age adoption passing confidence
@types/node (source) 22.10.1 -> 22.12.0 age adoption passing confidence
chalk ^5.3.0 -> ^5.4.1 age adoption passing confidence
chokidar ^4.0.1 -> ^4.0.3 age adoption passing confidence
esbuild ^0.24.0 -> ^0.24.2 age adoption passing confidence
esbuild 0.24.0 -> 0.24.2 age adoption passing confidence
eslint (source) 9.16.0 -> 9.19.0 age adoption passing confidence
execa ^9.5.1 -> ^9.5.2 age adoption passing confidence
fs-extra ^11.2.0 -> ^11.3.0 age adoption passing confidence
knip (source) 5.39.2 -> 5.43.6 age adoption passing confidence
lefthook 1.9.0 -> 1.10.10 age adoption passing confidence
magic-string ^0.30.14 -> ^0.30.17 age adoption passing confidence
mlly ^1.7.3 -> ^1.7.4 age adoption passing confidence
rollup (source) 4.28.1 -> 4.32.1 age adoption passing confidence
semver ^7.6.3 -> ^7.7.0 age adoption passing confidence
typescript (source) 5.7.2 -> 5.7.3 age adoption passing confidence
unplugin ^1.16.0 -> ^1.16.1 age adoption passing confidence
zod (source) ^3.23.8 -> ^3.24.1 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.6.1

Compare Source

Note: Version bump only for package @​commitlint/cli

evanw/esbuild (esbuild)

v0.24.2

Compare Source

  • Fix regression with --define and import.meta (#​4010, #​4012, #​4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

v0.24.1

Compare Source

  • Allow es2024 as a target in tsconfig.json (#​4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#​4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

    // The following code now transforms to "return true;\n"
    console.log(esbuild.transformSync(
      `return process.env['SOME-TEST-VAR']`,
      { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
    ))

    Note that if you're passing values like this on the command line using esbuild's --define flag, then you'll need to know how to escape quote characters for your shell. You may find esbuild's JavaScript API more ergonomic and portable than writing shell code.

  • Minify empty try/catch/finally blocks (#​4003)

    With this release, esbuild will now attempt to minify empty try blocks:

    // Original code
    try {} catch { foo() } finally { bar() }
    
    // Old output (with --minify)
    try{}catch{foo()}finally{bar()}
    
    // New output (with --minify)
    bar();

    This can sometimes expose additional minification opportunities.

  • Include entryPoint metadata for the copy loader (#​3985)

    Almost all entry points already include a entryPoint field in the outputs map in esbuild's build metadata. However, this wasn't the case for the copy loader as that loader is a special-case that doesn't behave like other loaders. This release adds the entryPoint field in this case.

  • Source mappings may now contain null entries (#​3310, #​3878)

    With this change, sources that result in an empty source map may now emit a null source mapping (i.e. one with a generated position but without a source index or original position). This change improves source map accuracy by fixing a problem where minified code from a source without any source mappings could potentially still be associated with a mapping from another source file earlier in the generated output on the same minified line. It manifests as nonsensical files in source mapped stack traces. Now the null mapping "resets" the source map so that any lookups into the minified code without any mappings resolves to null (which appears as the output file in stack traces) instead of the incorrect source file.

    This change shouldn't affect anything in most situations. I'm only mentioning it in the release notes in case it introduces a bug with source mapping. It's part of a work-in-progress future feature that will let you omit certain unimportant files from the generated source map to reduce source map size.

  • Avoid using the parent directory name for determinism (#​3998)

    To make generated code more readable, esbuild includes the name of the source file when generating certain variable names within the file. Specifically bundling a CommonJS file generates a variable to store the lazily-evaluated module initializer. However, if a file is named index.js (or with a different extension), esbuild will use the name of the parent directory instead for a better name (since many packages have files all named index.js but have unique directory names).

    This is problematic when the bundle entry point is named index.js and the parent directory name is non-deterministic (e.g. a temporary directory created by a build script). To avoid non-determinism in esbuild's output, esbuild will now use index instead of the parent directory in this case. Specifically this will happen if the parent directory is equal to esbuild's outbase API option, which defaults to the lowest common ancestor of all user-specified entry point paths.

  • Experimental support for esbuild on NetBSD (#​3974)

    With this release, esbuild now has a published binary executable for NetBSD in the @esbuild/netbsd-arm64 npm package, and esbuild's installer has been modified to attempt to use it when on NetBSD. Hopefully this makes installing esbuild via npm work on NetBSD. This change was contributed by @​bsiegert.

    ⚠️ Note: NetBSD is not one of Node's supported platforms, so installing esbuild may or may not work on NetBSD depending on how Node has been patched. This is not a problem with esbuild. ⚠️

eslint/eslint (eslint)

v9.19.0

Compare Source

v9.18.0

Compare Source

v9.17.0

Compare Source

jprichardson/node-fs-extra (fs-extra)

v11.3.0

Compare Source

webpro-nl/knip (knip)

v5.43.6

Compare Source

  • Update docs for writing a plugin (f3669e2)
  • Remove unused property (18612d2)
  • Merge glob patterns (3815fae)
  • Update docs for writing a plugin (c1de2ba)
  • Invoke expo config function with context obj (resolves #​919) (2d0876b)
  • Add empty plugins: [] to dummy expo obj to cause less issues (15b8aac)

v5.43.5

Compare Source

  • Allow nsTypes to always consider all enums (the actual fix for #​927) (881de38)

v5.43.4

Compare Source

  • Add missing test & widen scope for implicit enumerations (resolves #​927) (d02db68)

v5.43.3

Compare Source

v5.43.2

Compare Source

  • Add a bit of error handling for failed contributors fetch (b70958a)
  • Always use production entries by default in expo plugin (resolves #​918) (9b8cb69)
  • knipignore → lintignore (47460d2)
  • Fix scoping of namespace import refs (c8ce64d)
  • Bun started exposing serialize and deserialize directly from node:v8 (cbfc56e)
  • Update docs (b7b6273)
  • Update dependencies (9b4f695)

v5.43.1

Compare Source

v5.43.0

Compare Source

v5.42.3

Compare Source

v5.42.2

Compare Source

v5.42.1

Compare Source

  • Exclude semantic-release packages (resolves #​899) (a28cc02)* Edit docs + gen (d850cbe)
  • Improve reported line sorting (7ff0b70)
  • Rename tests touching fs for easier exclusion (be5ba91)
  • Add test:watch script to watch only failing test (86b2123)
  • Add default formatter for jsx (4a212ad)
  • Avoid overwrites in issue collector storage key (0530465)
  • Rename file to match test/fixture consistency (959b64c)
  • Fix case of node ../../node_modules/.bin/executable (resolves #​908) (5a77dcc)
  • Log debug session from launcher (be1f9d4)
  • Introduce optional dependencies & improve pm cli arg handling (1731ee5)
  • Support more execa methods in visitor (5f2cf34)
  • Minor refactor (052375f)
  • Fix non-internal isDependency case (e908cfe)
  • Format on save (0f67016)
  • Fix case of $/execa script like yarn lint:spellcheck (03abffd)
  • Reduce noise (5a3177f)
  • feat: add dependency-cruiser plugin (#​911) (8d206a0) - thanks @​filipw01!
  • Update dependencies (b9aff83)
  • Update docs re. 1731ee5 (938496c)

v5.42.0

Compare Source

v5.41.1

Compare Source

v5.41.0

Compare Source

v5.40.0

Compare Source

v5.39.4

Compare Source

  • Ignore ignore patterns in vite test.include patterns (df390a0)
  • Stop using package.json as fallback containingFilePath (de6682b)

v5.39.3

Compare Source

  • Doc edits (0f640e1)
  • feat: update mdx detection dependency list and update custom compiler… (#​875) (055a2e3)
  • Add new content configuration entry for Astro (#​872) (c80ac0e)
evilmartians/lefthook (lefthook)

v1.10.10

Compare Source

v1.10.9

Compare Source

  • fix: make uninstall --remove-configs description more accurate (#​934) by @​scop

v1.10.8

Compare Source

v1.10.7

Compare Source

v1.10.6

Compare Source

Changelog

v1.10.5

Compare Source

  • feat: add lefthook option for custom path or command (#​927) by @​mrexox
  • chore: update config template with new jobs by @​mrexox

v1.10.4

Compare Source

v1.10.3

Compare Source

v1.10.2

Compare Source

v1.10.1

Compare Source

v1.10.0

Compare Source

v1.9.3

Compare Source

v1.9.2

Compare Source

v1.9.1

Compare Source

rollup/rollup (rollup)

v4.32.1

Compare Source

2025-01-28

Bug Fixes
  • Fix possible crash when optimizing logical expressions (#​5804)
Pull Requests

v4.32.0

Compare Source

2025-01-24

Features
  • Add watch.onInvalidate option to trigger actions immediately when a file is changed (#​5799)
Bug Fixes
  • Fix incorrect urls in CLI warnings (#​5809)
Pull Requests

v4.31.0

Compare Source

2025-01-19

Features
  • Do not immediately quit when trying to use watch mode from within non-TTY environments (#​5803)
Bug Fixes
  • Handle files with more than one UTF-8 BOM header (#​5806)
Pull Requests

v4.30.1

Compare Source

2025-01-07

Bug Fixes
  • Prevent invalid code when simplifying unary expressions in switch cases (#​5786)
Pull Requests

v4.30.0

Compare Source

2025-01-06

Features
  • Inline values of resolvable unary expressions for improved tree-shaking (#​5775)
Pull Requests

v4.29.2

Compare Source

2025-01-05

Bug Fixes
  • Keep import attributes when using dynamic ESM import() expressions from CommonJS (#​5781)
Pull Reques

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 16, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 95898ad to 981c84a Compare December 17, 2024 06:50
@renovate renovate bot changed the title fix(deps): update dependency execa to ^9.5.2 fix(deps): update all non-major dependencies Dec 17, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from e0f7f5f to c3d88f2 Compare December 23, 2024 20:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 3d170df to 174cce5 Compare December 28, 2024 17:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ed8f7e8 to 208c969 Compare January 8, 2025 13:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9e9cd8f to 479e7ec Compare January 10, 2025 10:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from b934b3d to 0eb71ed Compare January 27, 2025 09:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from d035124 to 99ecaa0 Compare February 1, 2025 21:07
@socket-security
Copy link

socket-security bot commented Feb 1, 2025

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 0af3956 to f8bff25 Compare February 5, 2025 21:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f8bff25 to f7b50da Compare February 6, 2025 06:06
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies - autoclosed Feb 7, 2025
@renovate renovate bot closed this Feb 7, 2025
@renovate renovate bot deleted the renovate/all-minor-patch branch February 7, 2025 14:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Development

Successfully merging this pull request may close these issues.

0 participants